home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000029_news@columbia.edu_Sat Jul 29 10:18:17 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20527
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 29 Jul 1995 18:55:46 -0400
  3. Received: by apakabar.cc.columbia.edu id AA15183
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 29 Jul 1995 18:55:44 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Multiple Connects to Same Port
  9. Message-Id: <1995Jul29.161817.57488@cc.usu.edu>
  10. Date: 29 Jul 95 16:18:17 MDT
  11. References: <Pine.OSF.3.91.950728143344.16379A-100000@io.UWinnipeg.ca>
  12. Organization: Utah State University
  13. Lines: 28
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Pine.OSF.3.91.950728143344.16379A-100000@io.UWinnipeg.ca>, Jim Clark <clark@UWinnipeg.ca> writes:
  17. > Hi
  18. > Is it possible to make multiple connects to the same port (logging in to 
  19. > different accounts on same machine) without going through the 
  20. > set port tcp address
  21. > repeating address each time and picking the N(ew) option when prompted by 
  22. > Kermit?  I was looking/experimenting for something whereby one could just 
  23. > indicate that the current and/or next connect would be a new one.
  24. > Related question is whether one can select specified connection once 
  25. > multiple connects have been made or must cycle through the connections 
  26. > with the <Alt>n method?
  27. -------------
  28.     SET PORT TCP   is often encapsulated in macro TELNET as
  29.     def telnet set port tcp \%1 \%2
  30.  
  31.     The second argument is for a port number (default 23, Telnet)
  32. and can also be N for New session. Telnet thatplace n.
  33.     SHOW SESSION will show active and remembered sessions, then
  34. telnet <digit>  or  set port tcp <digit>  works when the digit picks
  35. the session number from Show Session. It's in the release docs.
  36.     Otherwise there is no syntax to say start a new session to the
  37. same place (as there may be several "same places" active on the session
  38. list).
  39.     Joe D.